home *** CD-ROM | disk | FTP | other *** search
- ;UPGRADES & BUILDS RELATED TO OTHER PLAYERS
-
- #load-if-defined DIFFICULTY-MODERATE
- (load-random
- 20 "petersen dip bully"
- 5 "petersen dip boomer"
- 5 "petersen dip feeder"
- )
-
- #else
-
- (load-random
- 10 "petersen dip bully"
- 10 "petersen dip boomer"
- 10 "petersen dip feeder"
- )
- #end-if
-
-
- ;**************************************
- ;TRIBUTE TO ONE ANOTHER
- (defrule
- (taunt-detected any-ally 4)
- (wood-amount > 200)
- (not (goal resource-needed WOOD) )
- =>
- (release-escrow wood)
- (tribute-to-player this-any-ally wood 100)
- (acknowledge-taunt this-any-ally 4)
- (chat-local-to-self "Tribute wood")
- )
-
- (defrule
- (taunt-detected any-ally 3)
- (food-amount > 200)
- (not (goal resource-needed FOOD) )
- =>
- (release-escrow food)
- (tribute-to-player this-any-ally food 100)
- (acknowledge-taunt this-any-ally 3)
- (chat-local-to-self "Tribute food")
- )
-
- (defrule
- (goal wonder-attempt NO)
- (taunt-detected any-ally 5)
- (not (goal resource-needed GOLD) )
- =>
- (release-escrow gold)
- (tribute-to-player this-any-ally gold 100)
- (acknowledge-taunt this-any-ally 5)
- (chat-local-to-self "Tribute gold")
- )
-
- (defrule
- (taunt-detected any-ally 6)
- (stone-amount > 200)
- (not (goal resource-needed STONE) )
- =>
- (release-escrow stone)
- (tribute-to-player this-any-ally stone 100)
- (acknowledge-taunt this-any-ally 6)
- )
-
-